home *** CD-ROM | disk | FTP | other *** search
/ Shocking The Web CD-ROM / SHOCK_CD.ISO / pc / tutorial / devglry / zoetek / source / shckclck.dir / 00142_stop-start stopwatch.ls < prev    next >
Encoding:
Text File  |  1996-04-11  |  327 b   |  14 lines

  1. global sMode, stopwatchon, stopwatchval, stopwatchpause
  2.  
  3. on mouseDown
  4.   if stopwatchon then
  5.     set stopwatchval to the timer
  6.   else
  7.     set the timer to stopwatchval
  8.   end if
  9.   set stopwatchon to not stopwatchon
  10.   set stopwatchpause to 0
  11.   set the castNum of sprite sMode to the number of cast "stopwatch"
  12.   updateStage()
  13. end
  14.